lrc_print_recordset
| ADO Recordset Functions |
Prints a number of rows from a recordset.
void lrc_print_recordset( Recordset15* recordset, long NumberOfRows );
| recordset | An ADO recordset. |
| NumberOfRows | The number of rows to print from the recordset. |
The lrc_print_recordset function prints the number of rows indicated by NumberOfRows. If NumberOfRows is equal to -1, then the function prints all of the rows.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example shows how to print a variant BSTR:
VARIANT var = lrc_variant_BSTR("HELLO");lrc_print_variant(var);

